home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / javascript / part4 / loadpng.js < prev    next >
Text File  |  2000-02-07  |  338b  |  10 lines

  1. TempA = location.href.split('.htm');
  2. TempA[0] = TempA[0] + '_png';
  3. NewURL = TempA.join('.htm');
  4.  
  5. if (navigator.userAgent.indexOf('Amiga') > -1) location.replace(NewURL);
  6. if (navigator.userAgent.indexOf('Mozilla/4') == 0) location.replace(NewURL);
  7. Version = navigator.appVersion.split(' ');
  8. if (Version[0] >= 5) location.replace(NewURL);
  9.  
  10.